home *** CD-ROM | disk | FTP | other *** search
/ Die Speccy' 97 / Die Speccy' 97.iso / amiga_system / the_aminet / dev / lang / python_src.readme < prev    next >
Text File  |  1995-11-07  |  18KB  |  357 lines

  1. Short:    Amiga Python source files
  2. Author:   Guido van Rossum (Amiga port: Geoff Fellows)
  3. Uploader: "Geoff Fellows" <gfellows@csu.edu.au>
  4. Version:  0.0 initial release
  5. Type:     dev/lang
  6.  
  7. This is an Amiga port of the programming lanugage Python.
  8. It's only a straight port based on the POSIX version of Python v1.3,
  9. there are no Amiga-specifics yet.  There is one serious problem:
  10. floating-point numbers don't print properly, they work internally, but
  11. print as "%.12g".  I've used SAS/C v6.55 and v6.51 and a variety of
  12. optimisations and floating-point types, even tried stepping through
  13. the code with cpr, but floating-point numbers always display as
  14. "%.12g"!  This string isn't in the executable because I changed to
  15. gcvt().
  16.  
  17. Follows is the contents of the BLURB file.
  18. The prime number program works well.
  19.  
  20. What is Python?
  21. ---------------
  22.  
  23. Python is an interpreted, interactive, object-oriented programming
  24. language.  It incorporates modules, exceptions, dynamic typing, very
  25. high level dynamic data types, and classes.  Python combines
  26. remarkable power with very clear syntax.  It has interfaces to many
  27. system calls and libraries, as well as to various window systems, and
  28. is extensible in C or C++.  It is also usable as an extension language
  29. for applications that need a programmable interface.  Finally, Python
  30. is portable: it runs on many brands of UNIX, on the Mac, and on
  31. MS-DOS.
  32.  
  33. As a short example of what Python looks like, here's a script to
  34. print prime numbers (not blazingly fast, but readable!).  When this
  35. file is made executable, it is callable directly from the UNIX shell
  36. (if your system supports #! in scripts and the python interpreter is
  37. installed at the indicated place).
  38.  
  39. #!/usr/local/bin/python
  40.  
  41. # Print prime numbers in a given range
  42.  
  43. def main():
  44.     import sys
  45.     min, max = 2, 0x7fffffff
  46.     if sys.argv[1:]:
  47.         min = int(eval(sys.argv[1]))
  48.         if sys.argv[2:]:
  49.             max = int(eval(sys.argv[2]))
  50.     primes(min, max)
  51.  
  52. def primes(min, max):
  53.     if 2 >= min: print 2
  54.     primes = [2]
  55.     i = 3
  56.     while i <= max:
  57.         for p in primes:
  58.             if i%p == 0 or p*p > i: break
  59.         if i%p <> 0:
  60.             primes.append(i)
  61.             if i >= min: print i
  62.         i = i+2
  63.  
  64. main()
  65.  
  66.  
  67. ============================= Archive contents =============================
  68.  
  69. Original  Packed Ratio    Date     Time    Name
  70. -------- ------- ----- --------- --------  -------------
  71.     4621    1931 58.2% 22-Oct-95 12:54:38 +opcode.h
  72.     1705     859 49.6% 22-Oct-95 12:54:38 +parsetok.h
  73.       25      25  0.0% 22-Oct-95 12:54:38 +patchlevel.h
  74.     1736     876 49.5% 22-Oct-95 12:54:38 +pgenheaders.h
  75.     2268     957 57.8% 22-Oct-95 12:54:38 +pythonrun.h
  76.     1689     880 47.8% 22-Oct-95 12:54:38 +rangeobject.h
  77.    15265    4474 70.6% 22-Oct-95 12:54:38 +rename2.h
  78.     2910    1325 54.4% 22-Oct-95 12:54:38 +stringobject.h
  79.     3112    1502 51.7% 22-Oct-95 12:54:38 +structmember.h
  80.     1696     843 50.2% 22-Oct-95 12:54:38 +sysmodule.h
  81.     1088     396 63.6% 22-Oct-95 12:54:38 +thread.h
  82.     2533    1195 52.8% 22-Oct-95 12:54:38 +token.h
  83.     2804    1269 54.7% 22-Oct-95 12:54:38 +tupleobject.h
  84.     2466     991 59.8% 22-Oct-95 12:54:38 +mappingobject.h
  85.     1806     835 53.7% 22-Oct-95 12:54:38 +marshal.h
  86.     1480     746 49.5% 22-Oct-95 12:54:38 +metagrammar.h
  87.     2508    1089 56.5% 22-Oct-95 12:54:38 +methodobject.h
  88.     1683     834 50.4% 22-Oct-95 12:54:38 +moduleobject.h
  89.     2641    1199 54.6% 22-Oct-95 12:54:38 +mymalloc.h
  90.      470     285 39.3% 22-Oct-95 12:54:38 +mymath.h
  91.     1555     770 50.4% 22-Oct-95 12:54:38 +myproto.h
  92.     2457    1147 53.3% 22-Oct-95 12:54:38 +myselect.h
  93.     1676     797 52.4% 22-Oct-95 12:54:38 +mytime.h
  94.    15621    5420 65.3% 22-Oct-95 12:54:38 +object.h
  95.     2481    1180 52.4% 22-Oct-95 12:54:38 +objimpl.h
  96.     1894     937 50.5% 22-Oct-95 12:54:38 +osdefs.h.in
  97.     1892     896 52.6% 22-Oct-95 12:54:38 +fileobject.h
  98.     1853     939 49.3% 22-Oct-95 12:54:38 +floatobject.h
  99.     3870    1612 58.3% 22-Oct-95 12:54:38 +frameobject.h
  100.     2017     905 55.1% 22-Oct-95 12:54:38 +funcobject.h
  101.     1189     402 66.1% 22-Oct-95 12:54:38 +graminit.h
  102.     3322    1405 57.7% 22-Oct-95 12:54:38 +grammar.h
  103.     1849     878 52.5% 22-Oct-95 12:54:38 +import.h
  104.     2945    1401 52.4% 22-Oct-95 12:54:38 +intobject.h
  105.     1474     749 49.1% 22-Oct-95 12:54:38 +intrcheck.h
  106.     2929    1251 57.2% 22-Oct-95 12:54:38 +listobject.h
  107.     2937    1482 49.5% 22-Oct-95 12:54:38 +longintrepr.h
  108.     1884     919 51.2% 22-Oct-95 12:54:38 +longobject.h
  109.     2171    1076 50.4% 22-Oct-95 12:54:38 +node.h
  110.    24457    5907 75.8% 22-Oct-95 12:54:38 +abstract.h
  111.     2318    1023 55.8% 22-Oct-95 12:54:38 +accessobject.h
  112.     1632     827 49.3% 22-Oct-95 12:54:38 +assert.h
  113.     2074     976 52.9% 22-Oct-95 12:54:38 +bitset.h
  114.     1502     765 49.0% 22-Oct-95 12:54:38 +bltinmodule.h
  115.     3784    1576 58.3% 22-Oct-95 12:54:38 +ceval.h
  116.     2064     914 55.7% 22-Oct-95 12:54:38 +cgensupport.h
  117.     2868    1162 59.4% 22-Oct-95 12:54:38 +classobject.h
  118.     1454     755 48.0% 22-Oct-95 12:54:38 +dictobject.h
  119.     2108    1068 49.3% 22-Oct-95 12:54:38 +errcode.h
  120.     3035    1083 64.3% 22-Oct-95 12:54:38 +errors.h
  121.     1477     765 48.2% 22-Oct-95 12:54:38 +eval.h
  122.      122     109 10.6% 22-Oct-95 12:54:38 +Python.h
  123.     3182    1449 54.4% 22-Oct-95 13:40:12 +allobjects.h
  124.     2612    1256 51.9% 22-Oct-95 13:18:56 +compile.h
  125.      286     161 43.7% 22-Oct-95 12:54:38 +Makefile
  126.     2727    1288 52.7% 22-Oct-95 13:25:32 +modsupport.h
  127.     1956     944 51.7% 17-Oct-95 22:18:42 +osdefs.h
  128.     1847     906 50.9% 22-Oct-95 13:16:12 +traceback.h
  129.     3168     975 69.2% 22-Oct-95 14:54:32 +traceback.py
  130.     1040     480 53.8% 22-Oct-95 14:54:32 +types.py
  131.     2318     872 62.3% 22-Oct-95 14:54:32 +tzparse.py
  132.      649     363 44.0% 22-Oct-95 14:54:32 +util.py
  133.     4637    1931 58.3% 22-Oct-95 14:54:32 +uu.py
  134.    16820    4161 75.2% 22-Oct-95 14:54:32 +wave.py
  135.     6577    2386 63.7% 22-Oct-95 14:54:32 +whatsound.py
  136.     2477    1073 56.6% 22-Oct-95 14:54:32 +whrandom.py
  137.     2200    1022 53.5% 22-Oct-95 14:54:32 +zmod.py
  138.     2708     788 70.9% 22-Oct-95 14:54:32 +test_pow.py
  139.     1117     454 59.3% 22-Oct-95 14:54:32 +test_rgbimg.py
  140.      500     280 44.0% 22-Oct-95 14:54:32 +test_select.py
  141.      910     433 52.4% 22-Oct-95 14:54:32 +test_signal.py
  142.      869     455 47.6% 22-Oct-95 14:54:32 +test_support.py
  143.     2347     778 66.8% 22-Oct-95 14:54:32 +test_thread.py
  144.     7655    1929 74.8% 22-Oct-95 14:54:32 +test_types.py
  145.     1698     844 50.2% 22-Oct-95 14:54:32 +testall.out
  146.      714     283 60.3% 22-Oct-95 14:54:32 +testall.py
  147.     2697    1079 59.9% 22-Oct-95 14:54:32 +toaiff.py
  148.      679     412 39.3% 22-Oct-95 14:54:32 +token.py
  149.     1956    1002 48.7% 22-Oct-95 14:54:32 +tokenize.py
  150.     1219     593 51.3% 22-Oct-95 14:54:32 +tempfile.py
  151.     2412    1134 52.9% 22-Oct-95 14:54:32 +autotest.py
  152.     4392    1079 75.4% 22-Oct-95 14:54:32 +test_audioop.py
  153.     9475    2424 74.4% 22-Oct-95 14:54:32 +test_b1.py
  154.     8920    2121 76.2% 22-Oct-95 14:54:32 +test_b2.py
  155.      207     113 45.4% 22-Oct-95 14:54:32 +test_builtin.py
  156.     1422     615 56.7% 22-Oct-95 14:54:32 +test_exceptions.py
  157.    10786    3575 66.8% 22-Oct-95 14:54:32 +test_grammar.py
  158.      590     283 52.0% 22-Oct-95 14:54:32 +test_md5.py
  159.      914     343 62.4% 22-Oct-95 14:54:32 +test_opcodes.py
  160.      106      89 16.0% 22-Oct-95 14:54:32 +test_operations.py
  161.     1698     844 50.2% 23-Oct-95 09:51:06 +testall.out.in
  162.     6378    2441 61.7% 22-Oct-95 14:54:32 +random.py
  163.     1575     706 55.1% 22-Oct-95 14:54:32 +regex_syntax.py
  164.      706     358 49.2% 22-Oct-95 14:54:32 +regexp.py
  165.     3981    1541 61.2% 22-Oct-95 14:54:32 +regsub.py
  166.     2576     835 67.5% 22-Oct-95 14:54:32 +repr.py
  167.     8487    2884 66.0% 22-Oct-95 14:54:32 +rexec.py
  168.     3741    1564 58.1% 22-Oct-95 14:54:32 +sched.py
  169.     8930    3008 66.3% 22-Oct-95 14:54:32 +sgmllib.py
  170.     3673    1206 67.1% 22-Oct-95 14:54:32 +shelve.py
  171.     1657     695 58.0% 22-Oct-95 14:54:32 +shutil.py
  172.     6577    2386 63.7% 22-Oct-95 14:54:32 +sndhdr.py
  173.     1708     730 57.2% 22-Oct-95 14:54:32 +stat.py
  174.     1723     681 60.4% 22-Oct-95 14:54:32 +statcache.py
  175.     6627    2259 65.9% 22-Oct-95 14:54:32 +string.py
  176.      968     465 51.9% 22-Oct-95 14:54:32 +symbol.py
  177.     4147    1461 64.7% 22-Oct-95 14:54:32 +tb.py
  178.     2664     894 66.4% 22-Oct-95 14:54:32 +packmail.py
  179.     5829    2207 62.1% 22-Oct-95 14:54:32 +pdb.doc
  180.    12296    3894 68.3% 22-Oct-95 14:54:32 +pdb.py
  181.    15038    5186 65.5% 22-Oct-95 14:54:32 +pickle.py
  182.     8780    2969 66.1% 22-Oct-95 14:54:32 +pipes.py
  183.     1286     630 51.0% 22-Oct-95 14:54:32 +poly.py
  184.     5297    1852 65.0% 22-Oct-95 14:54:32 +posixfile.py
  185.     7312    2880 60.6% 22-Oct-95 14:54:32 +posixpath.py
  186.    28408   10510 63.0% 22-Oct-95 14:54:32 +profile.doc
  187.    20334    7099 65.0% 22-Oct-95 14:54:32 +profile.py
  188.    16336    5348 67.2% 22-Oct-95 14:54:32 +pstats.py
  189.     2740    1226 55.2% 22-Oct-95 14:54:32 +pty.py
  190.      841     444 47.2% 22-Oct-95 14:54:32 +py_compile.py
  191.     6070    2231 63.2% 22-Oct-95 14:54:32 +pyclbr.py
  192.     2865    1148 59.9% 22-Oct-95 14:54:32 +quopri.py
  193.      276     177 35.8% 22-Oct-95 14:54:32 +rand.py
  194.     7217    1859 74.2% 22-Oct-95 14:54:32 +formatter.py
  195.     4074    1479 63.6% 22-Oct-95 14:54:32 +fpformat.py
  196.     1778     780 56.1% 22-Oct-95 14:54:32 +getopt.py
  197.     1070     402 62.4% 22-Oct-95 14:54:32 +glob.py
  198.     1433     564 60.6% 22-Oct-95 14:54:32 +grep.py
  199.    11252    3258 71.0% 22-Oct-95 14:54:32 +ihooks.py
  200.      805     451 43.9% 22-Oct-95 14:54:32 +importall.py
  201.     2020     837 58.5% 22-Oct-95 14:54:32 +linecache.py
  202.      288     154 46.5% 22-Oct-95 14:54:32 +lockfile.py
  203.     3170    1206 61.9% 22-Oct-95 14:54:32 +multifile.py
  204.     1545     647 58.1% 22-Oct-95 14:54:32 +mutex.py
  205.     1552     604 61.0% 22-Oct-95 14:54:32 +newdir.py
  206.    12374    4066 67.1% 22-Oct-95 14:54:32 +ni.py
  207.     3136    1289 58.8% 22-Oct-95 14:54:32 +os.py
  208.       68      63  7.3% 22-Oct-95 14:54:32 +ospath.py
  209.     2090     880 57.8% 22-Oct-95 14:54:32 +cmd.py
  210.     1757     835 52.4% 22-Oct-95 14:54:32 +cmp.py
  211.     1885     903 52.0% 22-Oct-95 14:54:32 +cmpcache.py
  212.     2136     960 55.0% 22-Oct-95 14:54:32 +codehack.py
  213.     3082    1164 62.2% 22-Oct-95 14:54:32 +colorsys.py
  214.     1393     698 49.8% 22-Oct-95 14:54:32 +commands.py
  215.     1874     820 56.2% 22-Oct-95 14:54:32 +compileall.py
  216.     6351    2007 68.3% 22-Oct-95 14:54:32 +copy.py
  217.      823     416 49.4% 22-Oct-95 14:54:32 +dircache.py
  218.     5071    1761 65.2% 22-Oct-95 14:54:32 +dircmp.py
  219.     4664    1628 65.0% 22-Oct-95 14:54:32 +dis.py
  220.     3484    1239 64.4% 22-Oct-95 14:54:32 +dumbdbm.py
  221.     1608     730 54.6% 22-Oct-95 14:54:32 +dump.py
  222.      590     271 54.0% 22-Oct-95 14:54:32 +find.py
  223.    15087    4507 70.1% 22-Oct-95 14:54:32 +fmt.py
  224.     2207     904 59.0% 22-Oct-95 14:54:32 +fnmatch.py
  225.     2346    1072 54.3% 22-Oct-95 14:54:32 +addpack.py
  226.    29617    7897 73.3% 22-Oct-95 14:54:32 +aifc.py
  227.     1426     717 49.7% 22-Oct-95 14:54:32 +anydbm.py
  228.     1654     759 54.1% 22-Oct-95 14:54:32 +base64.py
  229.     9455    2600 72.5% 22-Oct-95 14:54:32 +bdb.py
  230.    12118    3999 66.9% 22-Oct-95 14:54:32 +binhex.py
  231.      458     205 55.2% 22-Oct-95 14:54:32 +bisect.py
  232.     4442    1811 59.2% 22-Oct-95 14:54:32 +calendar.py
  233.     7426    2510 66.1% 22-Oct-95 14:54:32 +Complex.py
  234.      286     161 43.7% 22-Oct-95 14:54:32 +Makefile
  235.     2981     902 69.7% 22-Oct-95 14:54:32 +Queue.py
  236.     3536    1328 62.4% 22-Oct-95 14:54:32 +StringIO.py
  237.      689     261 62.1% 22-Oct-95 14:54:32 +UserDict.py
  238.     1270     396 68.8% 22-Oct-95 14:54:32 +UserList.py
  239.     3054    1158 62.0% 22-Oct-95 12:54:40 +soundex.c
  240.     6506    2734 57.9% 25-Oct-95 12:23:36 +main.c
  241.    32445    7959 75.4% 25-Oct-95 17:48:34 +posixmodule.c
  242.    42574   11376 73.2% 22-Oct-95 12:54:40 +regexpr.c
  243.     5616    2134 62.0% 22-Oct-95 12:54:40 +regexpr.h
  244.    20430    6099 70.1% 22-Oct-95 12:54:40 +rotormodule.c
  245.     5436    2134 60.7% 22-Oct-95 12:54:40 +selectmodule.c
  246.    12274    3576 70.8% 22-Oct-95 12:54:40 +signalmodule.c
  247.    11678    3090 73.5% 22-Oct-95 12:54:40 +stropmodule.c
  248.     7187    2487 65.3% 22-Oct-95 12:54:40 +threadmodule.c
  249.    10259    3496 65.9% 23-Oct-95 08:25:32 +timemodule.c
  250.     3376    1451 57.0% 22-Oct-95 12:54:40 +timing.h
  251.     1269     399 68.5% 22-Oct-95 12:54:40 +timingmodule.c
  252.     5066    2109 58.3% 22-Oct-95 12:54:40 +xxmodule.c
  253.    23323    5731 75.4% 22-Oct-95 12:54:40 +arraymodule.c
  254.    34213    7387 78.4% 22-Oct-95 12:54:40 +audioop.c
  255.    23561    7240 69.2% 23-Oct-95 15:46:26 +binascii.c
  256.     2784    1223 56.0% 19-Oct-95 05:14:20 +config.c
  257.     1899     977 48.5% 22-Oct-95 12:54:40 +config.c.in
  258.      519     301 42.0% 22-Oct-95 12:54:40 +cryptmodule.c
  259.     5420    2110 61.0% 22-Oct-95 12:54:40 +dlmodule.c
  260.     3271    1508 53.8% 22-Oct-95 12:54:40 +environment.c
  261.     4363    1700 61.0% 22-Oct-95 12:54:40 +newmodule.c
  262.    15855    4884 69.1% 22-Oct-95 12:54:40 +objc.c
  263.    56619   13295 76.5% 22-Oct-95 12:54:40 +parsermodule.c
  264.    13582    4046 70.2% 22-Oct-95 12:54:40 +regexmodule.c
  265.     9563    3028 68.3% 22-Oct-95 12:54:40 +structmodule.c
  266.    11875    5010 57.8% 22-Oct-95 12:54:38 +BUGS
  267.     3438    1295 62.3% 22-Oct-95 12:54:40 +fcntlmodule.c
  268.      879     468 46.7% 22-Oct-95 12:54:40 +getpath.c
  269.     5459    1983 63.6% 22-Oct-95 12:54:40 +mathmodule.c
  270.     2285    1015 55.5% 22-Oct-95 12:54:40 +md5.h
  271.    10453    3263 68.7% 22-Oct-95 12:54:40 +md5c.c
  272.     4184    1749 58.1% 22-Oct-95 12:54:40 +md5module.c
  273.    10523    4530 56.9% 22-Oct-95 12:54:40 +Setup.in
  274.    19944    5868 70.5% 22-Oct-95 12:54:42 +stringobject.c
  275.    10045    3292 67.2% 22-Oct-95 12:54:42 +tupleobject.c
  276.     2515    1154 54.1% 22-Oct-95 12:54:42 +typeobject.c
  277.    22964    9317 59.4% 22-Oct-95 12:54:42 +README
  278.      508     265 47.8% 26-Oct-95 16:15:06 +scoptions
  279.    12060    5281 56.2% 22-Oct-95 12:54:42 +TODO
  280.    15464    4478 71.0% 22-Oct-95 12:54:40 +fileobject.c
  281.     9364    3218 65.6% 22-Oct-95 12:54:40 +frameobject.c
  282.     4943    1865 62.2% 22-Oct-95 12:54:40 +funcobject.c
  283.    15577    5097 67.2% 22-Oct-95 12:54:40 +intobject.c
  284.    15011    4276 71.5% 22-Oct-95 12:54:40 +listobject.c
  285.    29678    8334 71.9% 22-Oct-95 12:54:42 +longobject.c
  286.    19393    5556 71.3% 22-Oct-95 12:54:42 +mappingobject.c
  287.     5582    2045 63.3% 22-Oct-95 12:54:42 +methodobject.c
  288.     4066    1631 59.8% 22-Oct-95 12:54:42 +moduleobject.c
  289.    12464    4318 65.3% 22-Oct-95 12:54:42 +object.c
  290.     5288    2023 61.7% 22-Oct-95 12:54:42 +rangeobject.c
  291.     3688    1657 55.0% 22-Oct-95 12:54:42 +xxobject.c-template
  292.    20974    4477 78.6% 22-Oct-95 12:54:40 +abstract.c
  293.     8047    2609 67.5% 22-Oct-95 12:54:40 +accessobject.c
  294.    28729    7188 74.9% 22-Oct-95 12:54:40 +classobject.c
  295.    10203    3831 62.4% 25-Oct-95 12:25:26 +floatobject.c
  296.    10203    3831 62.4% 25-Oct-95 12:04:52 +floatobject.c.bak
  297.     9339    3616 61.2% 22-Oct-95 12:54:42 +parser.c
  298.     2106    1030 51.0% 22-Oct-95 12:54:42 +parser.h
  299.     4193    1619 61.3% 22-Oct-95 12:54:42 +parsetok.c
  300.    15847    5089 67.8% 22-Oct-95 12:54:42 +pgen.c
  301.     4496    1977 56.0% 22-Oct-95 12:54:42 +pgenmain.c
  302.     3775    1388 63.2% 22-Oct-95 12:54:42 +printgrammar.c
  303.    15329    4914 67.9% 22-Oct-95 12:54:42 +tokenizer.c
  304.     2745    1303 52.5% 22-Oct-95 12:54:42 +tokenizer.h
  305.     4149    1907 54.0% 22-Oct-95 12:54:42 +acceler.c
  306.     2217    1038 53.1% 22-Oct-95 12:54:42 +bitset.c
  307.     3339    1499 55.1% 22-Oct-95 12:54:42 +firstsets.c
  308.     5522    2025 63.3% 22-Oct-95 12:54:42 +grammar.c
  309.     2200    1098 50.0% 22-Oct-95 12:54:42 +grammar1.c
  310.     3871    1834 52.6% 17-Oct-95 09:25:54 +intrcheck.c
  311.     2241    1042 53.5% 22-Oct-95 12:54:42 +listnode.c
  312.     3354    1196 64.3% 22-Oct-95 12:54:42 +metagrammar.c
  313.     4129    1880 54.4% 22-Oct-95 12:54:42 +myreadline.c
  314.     2459    1138 53.7% 22-Oct-95 12:54:42 +node.c
  315.     1560     803 48.5% 22-Oct-95 13:49:52 +pgen.h
  316.     5996    1775 70.3% 22-Oct-95 12:54:42 +structmember.c
  317.     7527    2703 64.0% 22-Oct-95 12:54:42 +sysmodule.c
  318.     6186    2366 61.7% 22-Oct-95 12:54:42 +traceback.c
  319.    12766    3653 71.3% 22-Oct-95 13:27:06 +getargs.c
  320.     2257    1119 50.4% 22-Oct-95 12:54:42 +getopt.c
  321.       95      87  8.4% 22-Oct-95 12:54:42 +getplatform.c
  322.      367     234 36.2% 22-Oct-95 12:54:42 +getversion.c
  323.    23773    3868 83.7% 22-Oct-95 12:54:42 +graminit.c
  324.    21291    6058 71.5% 22-Oct-95 12:54:42 +import.c
  325.    14111    5215 63.0% 22-Oct-95 12:54:42 +importdl.c
  326.     1707     862 49.5% 22-Oct-95 12:54:42 +importdl.h
  327.    11049    3537 67.9% 22-Oct-95 12:54:42 +marshal.c
  328.     1663     844 49.2% 22-Oct-95 12:54:42 +memmove.c
  329.     9546    2986 68.7% 22-Oct-95 12:54:42 +modsupport.c
  330.     4237    1929 54.4% 22-Oct-95 12:54:42 +mystrtoul.c
  331.    14945    5143 65.5% 22-Oct-95 12:54:42 +pythonrun.c
  332.     1744     928 46.7% 22-Oct-95 12:54:42 +sigcheck.c
  333.    31230    7573 75.7% 22-Oct-95 12:54:42 +bltinmodule.c
  334.    61752   16831 72.7% 22-Oct-95 12:54:42 +ceval.c
  335.     7327    1607 78.0% 22-Oct-95 12:54:42 +cgensupport.c
  336.    60472   16130 73.3% 22-Oct-95 12:54:42 +compile.c
  337.     5257    2247 57.2% 22-Oct-95 12:54:42 +errors.c
  338.     1688     906 46.3% 22-Oct-95 12:54:42 +fmod.c
  339.      591     317 46.3% 22-Oct-95 12:54:42 +frozen.c
  340.     2758    1281 53.5% 22-Oct-95 12:54:42 +frozenmain.c
  341.      274     159 41.9% 26-Oct-95 17:04:16 +getcompiler.c
  342.      275     159 42.1% 26-Oct-95 17:03:58 +getcompiler.c.bak
  343.      189     148 21.6% 22-Oct-95 12:54:42 +getcopyright.c
  344.     1586     846 46.6% 22-Oct-95 12:54:42 +getmtime.c
  345.    33333    4900 85.2% 26-Oct-95 16:33:00 +smake.list2
  346.    17445    2850 83.6% 26-Oct-95 17:00:22 +SMakefile
  347.     1334     728 45.4% 26-Jan-94 12:00:00 +BLURB
  348.     5750    2735 52.4% 26-Jan-94 12:00:00 +BLURB.LUTZ
  349.      766     473 38.2% 26-Oct-95 16:03:48 +BUGS.Amiga
  350.    22307    8818 60.4% 06-Aug-94 12:00:00 +cheatsheet
  351.      218     139 36.2% 25-Oct-95 10:24:06 +python.lnk
  352.      992     602 39.3% 26-Oct-95 16:06:44 +README.Amiga
  353.    22654    3235 85.7% 25-Oct-95 10:17:26 +smake.list
  354.       80      80  0.0% 25-Oct-95 10:23:54 +testsprintf.c
  355. -------- ------- ----- --------- --------
  356.  1869675  605762 67.6% 28-Oct-95 13:17:10   284 files
  357.